home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / setreuid.c,v < prev    next >
Text File  |  1988-11-17  |  2KB  |  87 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.17.13.30.52;  author ouster;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * setreuid.c --
  27.  *
  28.  *    Source code for the setreuid library procedure.
  29.  *
  30.  * Copyright 1988 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifndef lint
  41. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  42. #endif not lint
  43.  
  44. #include <sprite.h>
  45. #include <proc.h>
  46. #include "compatInt.h"
  47.  
  48. /*
  49.  *----------------------------------------------------------------------
  50.  *
  51.  * setreuid --
  52.  *
  53.  *    Procedure to map from Unix setreuid system call to Sprite Proc_SetIDs.
  54.  *
  55.  * Results:
  56.  *    UNIX_ERROR is returned upon error, with the actual error code
  57.  *    stored in errno.  Upon success, UNIX_SUCCESS is returned.
  58.  *
  59.  * Side effects:
  60.  *    The real and effective user ID's of the process are modified as
  61.  *    specified, if the user is privileged to do so.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.  
  66. int
  67. setreuid(ruid, euid)
  68.     int    ruid, euid;
  69. {
  70.     ReturnStatus status;    /* result returned by Proc_SetIDs */
  71.  
  72.     if (ruid == -1) {
  73.     ruid = PROC_NO_ID;
  74.     }
  75.     if (euid == -1) {
  76.     euid = PROC_NO_ID;
  77.     }
  78.     status = Proc_SetIDs(ruid, euid);
  79.     if (status != SUCCESS) {
  80.     errno = Compat_MapCode(status);
  81.     return(UNIX_ERROR);
  82.     } else {
  83.     return(UNIX_SUCCESS);
  84.     }
  85. }
  86. @
  87.